home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 27 / CDROM27.iso / share / progra / mai / Application, IIF subroutine without extra DLL < prev    next >
Encoding:
Text File  |  1997-07-15  |  254 b   |  5 lines

  1. 'Description: Duplicates the IIF function but doesn't require an extra dll 
  2.  
  3. 'Function myIIF (ByVal expr As Integer, ByVal truepart As Variant, ByVal falsepart As Variant) As Variant
  4.     If expr Then myIIF = truepart Else myIIF = falsepart
  5. 'End Function